home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jazlib.arc / JZBIGSTR.C < prev    next >
Text File  |  1988-12-18  |  1KB  |  31 lines

  1. /*
  2. ┌────────────────────────────────────────────────────────────────────────────┐
  3. │jzbigstr.c                                     │
  4. │Write a big string to the screen at a given position.                 │
  5. │Usage:                                      │
  6. │  jzbigstr("JazSoft",0,0,'█');                                              │
  7. │                                         │
  8. │     ████                 ████          ███         █         │
  9. │      ██                ██    ██         ██ ██        ██         │
  10. │      ██     ████      ██████    ███        ████     ██       █████     │
  11. │      ██        ██      █  ██      ███      ██  ██    ████        ██         │
  12. │     ██  ██     █████        ██           ███    ██  ██     ██        ██         │
  13. │     ██  ██    ██  ██       ██  █    ██    ██    ██  ██     ██        ██ █     │
  14. │      ████     ███ ██   ██████     ████      ████    ████         ██      │
  15. │                                         │
  16. │ (C) JazSoft Software by Jack A. Zucker (301) 794-5950              │
  17. └────────────────────────────────────────────────────────────────────────────┘
  18. */
  19.  
  20. jzbigstr(fstr,frow,fcol,fchar,fattr)
  21. char *fstr;
  22. int frow,fcol;
  23. char fchar;
  24. int fattr;
  25. {
  26.   while (*fstr) {
  27.     jzbigltr(*fstr++,frow,fcol,fchar,fattr);
  28.     fcol += 8;
  29.   }
  30. }
  31.